home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / rpc / rpcSrvStat.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  772b  |  32 lines

  1. /*
  2.  * rpcSrvStat.h --
  3.  *
  4.  *      Statistics are taken to trace the behavior of the server side of
  5.  *      the RPC system.  The information is recorded in a record of event
  6.  *      counts.
  7.  *
  8.  * Copyright (C) 1985 Regents of the University of California
  9.  * All rights reserved.
  10.  *
  11.  *
  12.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/rpc/rpcSrvStat.h,v 9.2 90/10/02 16:30:26 mgbaker Exp $ SPRITE (Berkeley)
  13.  */
  14.  
  15. #ifndef _RPCSRVSTAT
  16. #define _RPCSRVSTAT
  17.  
  18. #include <user/rpc.h>
  19.  
  20. extern Rpc_SrvStat rpcSrvStat;
  21. extern Rpc_SrvStat rpcTotalSrvStat;
  22.  
  23. extern void RpcResetSrvStat _ARGS_((void));
  24. extern void Rpc_PrintSrvStat _ARGS_((void));
  25.  
  26. #ifdef notdef
  27. extern void Rpc_StartSrvTrace _ARGS_((void));
  28. extern void Rpc_EndSrvTrace _ARGS_((void));
  29. #endif notdef
  30.  
  31. #endif /* _RPCSRVSTAT */
  32.